home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Pratique / Fic.h < prev    next >
C/C++ Source or Header  |  2000-11-17  |  1KB  |  30 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef FicH
  3. #define FicH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <FileCtrl.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published:    // Composants gΘrΘs par l'EDI
  14.     TDriveComboBox *DriveComboBox1;
  15.     TDirectoryListBox *DirectoryListBox1;
  16.     TFileListBox *FileListBox1;
  17.     TMemo *Memo1;
  18.     TButton *Validation;
  19.     void __fastcall DriveComboBox1Change(TObject *Sender);
  20.     void __fastcall DirectoryListBox1Change(TObject *Sender);
  21.     void __fastcall ValidationClick(TObject *Sender);
  22. private:    // DΘclarations de l'utilisateur
  23. public:        // DΘclarations de l'utilisateur
  24.     __fastcall TForm1(TComponent* Owner);
  25. };
  26. //---------------------------------------------------------------------------
  27. extern PACKAGE TForm1 *Form1;
  28. //---------------------------------------------------------------------------
  29. #endif
  30.